Assignemnt #6 and Third Program
Code
///Name: Derrick Andreasen
///Period: 7
///Program name: ThirdProg
///File name: ThirdProg.java
///Date Finished:9/8/2015
public class ThirdProg
{
public static void main( String[] args )
{
//A comment, this is so you can read your program later.
//Anything after the // is ignored by Java.
System.out.println( "I could have code like this." ); //and this comment is ignored.
//You can also use a comment to "disable" or comment out a piece of code:
//System.out.println("This won't run.")
System.out.println( "This will run" );
}
}
Picture of the output